ScanDocument SetLaserPropertyVariableList

Adds a collection of LaserParameters to this ScanDocument.

 
public void SetLaserPropertyVariableList(Collection<LaserParameters> laserParametersCollection)

 

Return value

void 

 

Parameters

Collection<LaserParameters>laserParametersCollectionA collection of Laser Parameters

 

Example

Copy
Collection<LaserParameters> collection = new Collection<LaserParameters>(parameterList);
LaserParameters parameterHatch = new LaserParameters(DistanceUnit.Millimeters, AngleUnit.Radians, TimeUnit.Microseconds);
parameterHatch.Name = "laervarHatch";
parameterHatch.PolyDelay = 55;
parameterHatch.ModulationFrequency = 87;
parameterHatch.MarkDelay = 88;
parameterHatch.JumpDelay = 89;

collection.Add(parameterHatch);

LaserParameters parameterOutline = new LaserParameters(DistanceUnit.Millimeters, AngleUnit.Radians, TimeUnit.Microseconds);
parameterOutline.Name = "laervarOutline";
parameterOutline.PolyDelay = 85;
parameterOutline.ModulationFrequency = 77;
parameterOutline.MarkDelay = 78;
parameterOutline.JumpDelay = 79;

collection.Add(parameterOutline);


scanDocument.SetLaserPropertyVariableList(collection);